home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 7
/
Amiga Format AFCD07 (Dec 1996, Issue 91).iso
/
serious
/
shareware
/
comms
/
internet
/
html-related
/
hsc
/
source
/
hscprj
/
pdebug.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-10
|
528b
|
31 lines
/*
* hscprj/pdebug.h
*
* debugging defines for hsc's project-functions
*/
#ifndef HSCPRJ_PDEBUG_H
#define HSCPRJ_PDEBUG_H
#include "hsclib/ldebug.h"
/* this debugging info is displayed only
* if the switch "-debug" has been enabled
*/
/* debugging control */
#define DEBUG_PRJ 1
/* debugging define */
#if (DEBUG & DEBUG_PRJ)
#define DP(x) if ( hp->debug ) x
#else
#define DP(x) /* nufin */
#endif
/* debug message prefix for hscprj-modules */
#define DHP "*hscprj* "
#endif /* HSCPRJ_PDEBUG_H */